home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / SPINDIAL.PAK / SPINPPG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  43 lines

  1. // spinppg.h : Declaration of the CSpindialPropPage property page class.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13.  
  14. ////////////////////////////////////////////////////////////////////////////
  15. // CSpindialPropPage : See spinppg.cpp for implementation.
  16.  
  17. class CSpindialPropPage : public COlePropertyPage
  18. {
  19.     DECLARE_DYNCREATE(CSpindialPropPage)
  20.     DECLARE_OLECREATE_EX(CSpindialPropPage)
  21.  
  22. // Constructor
  23. public:
  24.     CSpindialPropPage();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CSpindialPropPage)
  28.     enum { IDD = IDD_PROPPAGE_SPINDIAL };
  29.     int     m_NeedlePosition;
  30.     //}}AFX_DATA
  31.  
  32. // Implementation
  33. protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.  
  36. // Message maps
  37. protected:
  38.     //{{AFX_MSG(CSpindialPropPage)
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41.  
  42. };
  43.